home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / Power Basic Compiler / COMMENTS.TXT next >
Text File  |  1997-12-02  |  750b  |  7 lines

  1. PowerBasic DLL Compiler v1.10
  2.  
  3. PB/DLL was designed primarily as an add-on product for Visual Basic for Windows.  This document will walk you through the steps necessary to take part of your VB code and convert it to a fast machine-code DLL that you can then call from your Visual Basic application.
  4.  
  5. Let's start with a very simple VB program, made up of a text box, two buttons, and two routines that are called when the buttons are clicked The first button is labelled MaxInt and calls a routine that calls a VB function that compares two passed integers and returns the larger. The other button, labelled CapFirst, calls a routine that calls a VB Sub that capitalizes every word in a passed string.
  6.  
  7. * Released by Jade Productions, Inc. '97 *